From: Julien Grall Date: Tue, 18 Feb 2014 13:58:21 +0000 (+0000) Subject: xen/arm: Save/restore GICH_VMCR on domain context switch X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~5567 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=910b590601970440bdb135ed83fe28d8a755173e;p=xen.git xen/arm: Save/restore GICH_VMCR on domain context switch GICH_VMCR register contains alias to important bits of GICV interface such as: - priority mask of the CPU - EOImode - ... We were safe because Linux guest always use the same value for this bits. When new guests will handle priority or change EOI mode, VCPU interrupt management will be in a wrong state. Signed-off-by: Julien Grall Acked-by: Ian Campbell Cc: George Dunlap --- diff --git a/xen/arch/arm/gic.c b/xen/arch/arm/gic.c index 13bbf48c5b..074624eacc 100644 --- a/xen/arch/arm/gic.c +++ b/xen/arch/arm/gic.c @@ -107,6 +107,7 @@ void gic_save_state(struct vcpu *v) v->arch.gic_lr[i] = GICH[GICH_LR + i]; v->arch.lr_mask = this_cpu(lr_mask); v->arch.gic_apr = GICH[GICH_APR]; + v->arch.gic_vmcr = GICH[GICH_VMCR]; /* Disable until next VCPU scheduled */ GICH[GICH_HCR] = 0; isb(); @@ -123,6 +124,7 @@ void gic_restore_state(struct vcpu *v) for ( i=0; iarch.gic_lr[i]; GICH[GICH_APR] = v->arch.gic_apr; + GICH[GICH_VMCR] = v->arch.gic_vmcr; GICH[GICH_HCR] = GICH_HCR_EN; isb();